167e17cabb8ca25161b385259c64fdfe98373d08
Gitcub / pages / [[...]].js
import Error from 'next/error';
import { IconContext } from 'react-icons';
import { GoFile, GoFileDirectory, GoGitCommit } from 'react-icons/go';
import ReactMarkdown from 'react-markdown';
import gfm from 'remark-gfm';
import hljs from 'highlight.js';
import path from 'path';

const linkClasses = 'text-blue-600 hover:underline';

function getRawURL(pathArray) {
  return `/${pathArray[0]}/raw/${pathArray.slice(2).join('/')}`;
}

function getLanguage(filename) {
  switch (path.extname(filename)) {
    case '.java':
      return 'java';
    case '.html':
    case '.xml':
      return 'xml';
    case '.md':
      return 'md';
    case '.c':
    case '.h':
      return 'c';
    case '.tex':
      return 'tex';
    case '.js':
      return 'js';
    case '.fs':
      return 'fs';
    case '.elm':
      return 'elm';
    case '.json':
      return 'json';
    case '.py':
      return 'py';
    case '.css':
      return 'css';
    default:
      return 'plaintext';
  }
}

function isImage(filename) {
  switch (path.extname(filename)) {
    case '.gif':
    case '.jpeg':
    case '.jpg':
    case '.png':
    case '.tiff':
    case '.tif':
      return true;
    default:
      return false;
  }
}

function makeBreadCrumbObj(name, pathArray) {
  const breadCrumbObj = {
    name: name,
    href: `/${pathArray.join('/')}`,
  };

  return breadCrumbObj;
}

async function getServerSideProps(context) {
  const res = await fetch(`http://localhost:3000/api${context.resolvedUrl}`);
  const data = await res.json();

  if (data.resultType === 'notFound') {
    return { notFound: true };
  } else {
    return { props: { data } };
  } 
}

function Button({ label, url }) {
  return (
    <a className={'block px-4 py-1.5 border border-slate-300 rounded-lg'} href={url}>{label}</a>
  );
}

function ListItemWithIcon({ icon, iconColor, name, url }) {
  return (
    <li className={'py-2.5 flex items-center'}>
      <div className={'pr-4'}>
        <IconContext.Provider value={{ size: '1.5em', className: iconColor }}>
          {icon}
        </IconContext.Provider>
      </div>
      <a className={'hover:text-blue-600 hover:underline'} href={url}>{name}</a>
    </li>
  );
}

function MainContentContainer({ children }) {
  return (
    <div className={'md:border md:border-slate-300 md:rounded-lg md:px-12 md:py-8'}>
      {children}
    </div>
  );
}

function LineNos({ textBlob }) {
  const count = textBlob.split('\n').length;
  const lineNos = [...Array(count).keys()].map((x) => x + 1).join('\n');

  return (
    <pre className={'text-right text-slate-400'}>
      {lineNos}
    </pre>
  );
}

function CodeBlock({ textBlob, resultPath }) {
  const language = getLanguage(resultPath[resultPath.length - 1]);
  const highlightedHTML =
    hljs.highlight(textBlob, { language: language, ignoreIllegals: true }).value;
  
  return (
    <pre>
      <code dangerouslySetInnerHTML={{ __html: highlightedHTML }} />
    </pre>
  );
}

function TextDisplayGrid({ textBlob, resultPath }) {
  return (
    <div className={'flex'}>
      <div className={'overflow-x-auto'}>
        <CodeBlock textBlob={textBlob} resultPath={resultPath} />
      </div>
      <div className={'pr-4 md:pr-8 order-first'}>
        <LineNos textBlob={textBlob} />
      </div>
    </div>
  );
}

function BreadCrumbTrail({ pathArray }) {
  const recursion = (acc) => {
    if (acc.length === pathArray.length - 4) {
      return acc;
    } else {
      const subArray = pathArray.slice(0, 1).concat('tree', pathArray.slice(2, acc.length + 4));
      const breadCrumb = makeBreadCrumbObj(pathArray[acc.length + 3], subArray);
      const newAcc = acc.concat([breadCrumb]);
      return recursion(newAcc);
    }
  };

  if (pathArray.length < 4) {
    return null;
  }

  let rootArray;

  if (pathArray[2] === 'master') {
    rootArray = pathArray.slice(0, 1);
  } else {
    rootArray = pathArray.slice(0, 1).concat('tree', pathArray[2]);
  }

  const headBreadCrumb = makeBreadCrumbObj(pathArray[0], rootArray);
  const tailBreadCrumbs = recursion([]);
  const breadCrumbs = [headBreadCrumb].concat(tailBreadCrumbs);

  return (
    <div className={'text-2xl flex-1'}>
      {breadCrumbs.map((breadCrumb, index) => (
        <span key={index}> <a className={linkClasses} href={breadCrumb.href}>{breadCrumb.name}</a> /</span>
      ))}
      <span> {pathArray[pathArray.length - 1]}</span>
    </div>
  );
}

function ReadmeDisplay({ resultContent, resultPath }) {
  const imageURITransformer = (uri) => `/${resultPath[0]}/raw/master/${uri}`;
  const titleClasses = 'text-2xl text-slate-800 pb-4 border-b border-slate-300';
  const articleClasses = 'pt-4 prose prose-xl prose-slate max-w-none prose-a:text-blue-600 prose-a:no-underline hover:prose-a:underline';
  
  return (
    <div className={'mt-16'}>
      <MainContentContainer>
        <p className={titleClasses}><strong>{resultContent.readmeName}</strong></p>
        <article className={articleClasses}>
          <ReactMarkdown
            remarkPlugins={[gfm]}
            transformImageUri={imageURITransformer}
            children={resultContent.readmeBlob}
          />
        </article>
      </MainContentContainer>
    </div>
  );
}

function TextBlobArea({ resultContent, resultPath }) {
  return (
    <MainContentContainer>
      <div className={'flex justify-end'}>
        <Button label={'Raw'} url={getRawURL(resultPath)} />
      </div>
      <TextDisplayGrid textBlob={resultContent} resultPath={resultPath} />
    </MainContentContainer>
  );
}

function BinaryBlobArea({ resultPath }) {
  let binaryDisplay;
  
  if (isImage(resultPath[resultPath.length - 1])) {
    binaryDisplay = <img src={getRawURL(resultPath)} alt={'Embedded Image.'} />;
  } else {
    binaryDisplay = <p className={'text-center text-xl'}>Binary content cannot be displayed.</p>;
  }
  
  return (
    <MainContentContainer>
      <div className={'flex justify-end'}>
        <Button label={'Download'} url={getRawURL(resultPath)} />
      </div>
      {binaryDisplay}
    </MainContentContainer>
  );
}

function MidSection({ resultPath }) {
  return (
    <div className={'h-20 p-4 flex justify-end items-center'}>
      <BreadCrumbTrail pathArray={resultPath} />
      <Button label={'History'} url={`/${resultPath[0]}/commits`} />
    </div>
  );
}

function DirectoryListing({ resultContent, resultPath }) {
  const makeURL = (repoRequest, item) => {
    const parentTail = resultPath.length > 2 ? resultPath.slice(2) : ['master'];
    const parentPath = resultPath.slice(0, 1).concat(repoRequest, parentTail);
    const url = `/${parentPath.join('/')}/${item}`;
    return url;
  }
  
  return (
    <MainContentContainer>
      <ul className={'text-lg divide-y divide-slate-300'}>
        {resultContent.trees.map((item, index) => (
          <ListItemWithIcon
            key={index}
            icon={<GoFileDirectory />}
            iconColor={'text-blue-400'}
            name={item}
            url={makeURL('tree', item)}
          />
        ))}
        {resultContent.blobs.map((item, index) => (
          <ListItemWithIcon
            key={index}
            icon={<GoFile />}
            iconColor={'text-slate-500'}
            name={item}
            url={makeURL('blob', item)}
          />
        ))}
      </ul>
    </MainContentContainer>
  );
}

function CommitListing({ resultContent, resultPath }) {
  const subArray = resultContent.slice(1);
  
  return (
    <MainContentContainer>
      <ul className={'text-lg divide-y divide-slate-300'}>
        <ListItemWithIcon
          icon={<GoGitCommit />}
          iconColor={'text-slate-500'}
          name={resultContent[0].message}
          url={`/${resultPath[0]}`}
        />
        {subArray.map((item, index) => (
          <ListItemWithIcon
            key={index}
            icon={<GoGitCommit />}
            iconColor={'text-slate-500'}
            name={item.message}
            url={`/${resultPath[0]}/tree/${item.id}`}
          />
        ))}
      </ul>
    </MainContentContainer>
  );
}

function RepositoryListing({ repositories }) {
  return (
    <ul className={'text-xl md:text-2xl divide-y divide-slate-300'}>
      {repositories.map((repo, index) => (
        <li key={index} className={'p-4 md:p-6'}>
          <a className={linkClasses} href={`/${repo.name}`}>{repo.name}</a>
        </li>
      ))}
    </ul>
  );
}

function PageSubstance({ data }) {
  switch (data.resultType) {
    case 'home':
      return <RepositoryListing repositories={data.resultContent} />;

      break;
    case 'rootDirectory':
      return (
        <div>
          <MidSection resultPath={data.resultPath} />
          <DirectoryListing
            resultContent={data.resultContent.entryNamesSorted}
            resultPath={data.resultPath}
          />
          {data.resultContent.readmeExists && (
            <ReadmeDisplay
              resultContent={data.resultContent}
              resultPath={data.resultPath}
            />
          )}
        </div>
      );
      
      break;
    case 'nonRootDirectory':
      return (
        <div>
          <MidSection resultPath={data.resultPath} />
          <DirectoryListing
            resultContent={data.resultContent}
            resultPath={data.resultPath}
          />
        </div>
      );
      
      break;
    case 'textBlob':
      return (
        <div>
          <MidSection resultPath={data.resultPath} />
          <TextBlobArea
            resultContent={data.resultContent}
            resultPath={data.resultPath}
          />
        </div>
      );

      break;
    case 'binaryBlob':
      return (
        <div>
          <MidSection resultPath={data.resultPath} />
          <BinaryBlobArea resultPath={data.resultPath} />
        </div>
      );

      break;
    case 'commits':
      return (
        <div>
          <MidSection resultPath={data.resultPath} />
          <CommitListing
            resultContent={data.resultContent}
            resultPath={data.resultPath}
          />
        </div>
      );
      
      break;
  }
}

function Header({ resultPath }) {
  return (
    <header className={'p-5 bg-slate-100 border-b border-slate-300'}>
      <div className={'md:pl-8 text-2xl md:text-5xl break-words'}>
        <a className={'text-blue-600 hover:underline font-mono'} href={'/'}>cleanslatesoftware.com</a>
        {resultPath.length > 0 && (
          <span> / <a className={linkClasses} href={`/${resultPath[0]}`}>{resultPath[0]}</a></span>
        )}
      </div>
    </header>
  );
}

function Main({ data }) {
  switch (data.resultType) {
    case 'home':
    case 'rootDirectory':
    case 'nonRootDirectory':
    case 'textBlob':
    case 'binaryBlob':
    case 'commits':
      return (
        <div>
          <Header resultPath={data.resultPath} />
          <main>
            <div className={'container mx-auto px-3 md:px-8'}>
              <PageSubstance data={data} />
            </div>
          </main>
          <footer className={'h-48'}></footer>
        </div>
      );

      break;
    default:
      return <Error statusCode={'500'} title={'Internal server error, try reloading the page'} />;
  }
}

export { getServerSideProps };
export default Main;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426